home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / dsp4tool / dlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-27  |  668 b   |  31 lines

  1. /*  DLIB.H -- Header for the DSP CARD 4 ROM Library manager
  2.  *
  3.  *  Copyright (C) by Jarkko Vuori 1992, 1993, 1994
  4.  *  Author(s): J Vuori
  5.  *  Modification(s):
  6.  */
  7.  
  8.  
  9. #define DIR_ENTRIES 16
  10. #define CHECK_ID    0x564a
  11. #define DESC_LEN    10
  12.  
  13.  
  14. typedef struct {
  15.     unsigned    adr;
  16.     unsigned    len;
  17.     char    description[DESC_LEN];
  18.     struct {
  19.     unsigned year:7;
  20.     unsigned month:4;
  21.     unsigned day:5;
  22.     }        date;
  23. } ROMDIR;
  24.  
  25.  
  26. /* DLIBCMD.C */
  27. Bool cdecl replace(FILE *files[], int numArg, char *comment);
  28. Bool cdecl bootimage(FILE *files[], int numArg, char *comment);
  29. Bool cdecl list(FILE *files[]);
  30. Bool cdecl autoboot(FILE *files[], int numArg);
  31.